From: Jesper Harder Date: Fri, 9 Apr 2004 14:32:49 +0000 (+0000) Subject: (info-apropos): Improve menu item regexp. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~23311 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=5f80a051cc89b08c7912b8e1a6fe7230f1a43f91;p=emacs.git (info-apropos): Improve menu item regexp. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 308b3fdb020..1bf1fe7d51c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2004-04-09 Jesper Harder + + * info.el (info-apropos): Improve menu item regexp. + 2004-04-09 Simon Josefsson * mail/smtpmail.el: Add comment, based on report by diff --git a/lisp/info.el b/lisp/info.el index 173abe17a83..4a05da999d4 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -2441,7 +2441,7 @@ Build a menu of the possible matches." (message "Searching indices...") (goto-char (point-min)) (re-search-forward "\\* Menu: *\n" nil t) - (while (re-search-forward "\\*.*: (\\([^)]+\\))" nil t) + (while (re-search-forward "\\*.*: *(\\([^)]+\\))" nil t) (add-to-list 'manuals (match-string 1))) (dolist (manual manuals) (message "Searching %s" manual)